home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / Demos / Bombardier_PC / BSCRIPTS.CST / 00119_Script_avionPict < prev    next >
Text File  |  1999-04-25  |  940b  |  40 lines

  1. -- ⌐ 1998 @radical.media, inc. & Concurrent New Media Group, L.L.C.
  2. -- Developed for Bombardier, Inc.
  3. --
  4. -- All programming developed by: 
  5. -- Robert Fabricant, Valerie Valoueva, Ossi Shaked, 
  6. -- Henry Sauvageot, Chris Howell & Chris Girand
  7. --
  8. -- Use of this code by parties other than @radical.media, inc. or their
  9. --agents 
  10. -- without the express written consent of @radical.media, inc. AND Concurrent 
  11. -- New Media Group, L.L.C. is strictly prohibited.
  12. ------------------------------------------------------
  13.  
  14. property linkedSprite
  15.  
  16. on new me
  17.  set linkedSprite = getSpriteNumFromMemberName ("invis_avionfield")
  18. end
  19.  
  20.  
  21.  
  22.  
  23. on mouseEnter me
  24.   set the member of sprite linkedSprite = member "avionField"
  25.   puppetsound 3,"subroll"
  26.   updatestage
  27. end
  28.  
  29. on mouseLeave me
  30.   set the member of sprite linkedSprite = member "invis_avionfield"
  31.   updatestage
  32. end
  33.  
  34.  
  35. on mouseUp me
  36.   cursor -1
  37.   go to "avion_exit"
  38. end
  39.  
  40.